home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscCalendarPalette / MiscCalendarView.subproj / DateDelegateProtocol.h next >
Text File  |  1995-04-12  |  394b  |  26 lines

  1. // Copyright (C) 1995 Jon Kutemeier
  2. // Use is governed by the MiscKit license
  3.  
  4. @protocol DateDelegate
  5.  
  6. - (int)day;
  7. - (int)month;
  8. - (int)year;
  9.  
  10. - setYear:(int)year month:(int)month day:(int)day;
  11.  
  12. - (int)numberOfDaysInMonth;
  13. - (int)startDayOfMonth;
  14.  
  15. - incrementMonth;
  16. - decrementMonth;
  17.  
  18. - incrementYear;
  19. - decrementYear;
  20.  
  21. - (const char *)monthStringValue;
  22. - (const char *)dateStringValue;
  23.  
  24. @end
  25.  
  26.